git チートシート
空コミットを行う
$ git commit --allow-empty -m "コミットメッセージ"
今いるブランチとmainを除く、マージ済みブランチを一括削除するコマンド
code:shell
$ git branch --merged|egrep -v '\*|main'|xargs git branch -d